Current Location: Home> Function Categories> asinh

asinh

Inverse hyperbolic sine
Name:asinh
Category:math
Programming Language:php
One-line Description:Inverse hyperbolic sine.

Definition and usage

asinh() function returns an inverse hyperbolic sine of a number.

Example

Returns the inverse hyperbolic sine value of different values:

 <?php
echo ( asinh ( 7 ) ;
echo ( asinh ( 56 ) ;
echo ( asinh ( 2.45 ) ) ;
?>

Try it yourself

grammar

 asinh ( x )
parameter describe
x Required. A number.

illustrate

Returns the inverse hyperbolic sine value of x , that is, the value whose hyperbolic sine is x .

Similar Functions
  • Convert angle to radians deg2rad

    deg2rad

    Convertangletoradian
  • Round floating point numbers round

    round

    Roundfloatingpointnu
  • Arctangle of two parameters atan2

    atan2

    Arctangleoftwoparame
  • Returns the remainder of the floating point number of division fmod

    fmod

    Returnstheremaindero
  • Get the pi value pi

    pi

    Getthepivalue
  • Calculate the oblique length of a straight triangle hypot

    hypot

    Calculatetheobliquel
  • Determine whether it is a finite value is_finite

    is_finite

    Determinewhetheritis
  • Absolute value abs

    abs

    Absolutevalue
Popular Articles